home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / medmfc.zip / MULTIPAD.H < prev    next >
C/C++ Source or Header  |  1994-06-23  |  1KB  |  43 lines

  1. // multipad.h : main header file for the Multipad application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. #include <afxext.h>
  15. #include "resource.h"
  16.  
  17. class CMultiPadApp : public CWinApp
  18. {
  19.     BOOL InitInstance();
  20.     //{{AFX_MSG(CMultiPadApp)
  21.     afx_msg void OnAppAbout();
  22.     //}}AFX_MSG
  23.     DECLARE_MESSAGE_MAP()
  24. };
  25.  
  26. class CPadDoc : public CDocument
  27. {
  28.     DECLARE_DYNCREATE(CPadDoc)
  29.     void Serialize(CArchive& ar);
  30.         MAGMAED_STATUS &CPadDoc::GetStatus();
  31.  
  32.     //{{AFX_MSG(CPadDoc)
  33.     afx_msg void OnUpdateIndicatorOvr(CCmdUI* pCmdUI);
  34.     afx_msg void OnUpdateIndicatorCol(CCmdUI* pCmdUI);
  35.     afx_msg void OnUpdateIndicatorCurrLine(CCmdUI* pCmdUI);
  36.     afx_msg void OnUpdateIndicatorNumLines(CCmdUI* pCmdUI);
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. };
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.  
  43.